Performing comprehensive quality control (QC) is necessary to remove technical artifacts, such as doublets or ambient RNA, for downstream analysis of single-cell RNA sequencing (scRNA-seq) data. In this guide we will demonstrate how to use these functions to perform quality control on cell-filtered level data. We will assume that the majority of the low-quality droplets have been removed. Please refer to “Running quality control of droplet-level single-cell data with singleCellTK” for droplet-level cell filtering.
The package can be loaded using the library command.
library(singleCellTK)
We will use a filtered form of the PBMC 3K and 6K dataset from the package TENxPBMCData, which is available from the importExampleData function. We will combine these datasets together into a single SingleCellExperiment object.
pbmc3k <- importExampleData(dataset = "pbmc3k")
pbmc6k <- importExampleData(dataset = "pbmc6k")
pbmc <- BiocGenerics::cbind(pbmc3k, pbmc6k)
While not used here, singleCellTK also supports the importing of single-cell data from the following platforms: 10X CellRanger, STARSolo, BUSTools, SEQC, DropEST, and AnnData. Please refer to the “Import User Guide Title Here”[Link here] for detailed instructions.
SCTK utilizes dimensionality reduction techniques such as TSNE and UMAP for visualizing single-cell data. The user can modify the dimensions by adjusting the parameters within the function. The logNorm parameter should be set to TRUE for normalization prior to running dimensionality reduction.
The sample parameter may be specified if multiple samples exist in the SingleCellExperiment object. Here, we will use the sample vector stored in the colData of the SingleCellExperiment object.
# UMAP:
pbmc <- getUMAP(inSCE = pbmc, useAssay = "counts", logNorm = TRUE, sample = colData(pbmc)$sample)
# TSNE (not run):
# pbmc <- getTSNE(inSCE=pbmc, useAssay="counts", logNorm = TRUE, sample = colData(pbmc)$sample)
All of the droplet-based QC algorithms are able to be run under the wrapper function runCellQC. By default all possible QC algorithms will be run.
Users may set a sample parameter if you would like to compare between multiple samples. Here, we will use the sample vector stored in the SingleCellExperiment object.
If the user wishes, a list of gene sets can be applied to the function to determine the expression of a set of specific genes. A gene list imported into the SingleCellExperiment object using importGeneSets functions can be set as collectionName. Additionally, a pre-made list of genes can be used to determine the level of gene expression per cell. A list containing gene symbols may be set as geneSetList, or the user may instead use the geneSetCollection parameter to supply a GeneSetCollection object from the GSEABase package.
pbmc <- importGeneSetsFromGMT(inSCE = pbmc, collectionName = "mito", file = "~/Git/singleCellTK/inst/extdata/mito_subset.gmt")
pbmc <- runCellQC(pbmc, sample = colData(pbmc)$sample, collectionName = "mito")
If users choose to only run a specific set of algorithms, they can specify which to run with the algorithms parameter.
When quality control functions are run in singleCellTK, the output of the function is stored in the colData slot of the SingleCellExperiment object.
head(colData(pbmc), 5)
| Sample | Barcode | Sequence | Library | Cell_ranger_version | Tissue_status | Barcode_type | Chemistry | Sequence_platform | Individual | Date_published | sample | sum | detected | percent_top_50 | percent_top_100 | percent_top_200 | percent_top_500 | subsets_mito_sum | subsets_mito_detected | subsets_mito_percent | total | scrublet_score | scrublet_call | scran_doubletCells_score | scran_doubletCells_score_log10 | doubletFinder_doublet_score_resolution_1.5 | doubletFinder_doublet_label_resolution_1.5 | scds_cxds_score | scds_cxds_call | scds_bcds_score | scds_bcds_call | scds_hybrid_score | scds_hybrid_call | decontX_contamination | decontX_clusters | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| pbmc3k_AAACATACAACCAC-1 | pbmc3k | AAACATACAACCAC-1 | AAACATACAACCAC | 1 | v1.1.0 | NA | GemCode | Chromium_v1 | NextSeq500 | HealthyDonor2 | 2016-05-26 | pbmc3k | 2421 | 781 | 47.74886 | 63.27964 | 74.96902 | 88.39323 | 73 | 10 | 3.0152829 | 2421 | 0.2394366 | FALSE | 28.72000 | 1.473049 | 0.0138889 | Singlet | 22794.141 | FALSE | 0.0023788 | FALSE | 0.2081130 | FALSE | 0.0331599 | pbmc3k-1 |
| pbmc3k_AAACATTGAGCTAC-1 | pbmc3k | AAACATTGAGCTAC-1 | AAACATTGAGCTAC | 1 | v1.1.0 | NA | GemCode | Chromium_v1 | NextSeq500 | HealthyDonor2 | 2016-05-26 | pbmc3k | 4903 | 1352 | 45.50275 | 61.02386 | 71.81318 | 82.62288 | 186 | 10 | 3.7935958 | 4903 | 0.0935252 | FALSE | 56.93878 | 1.762969 | 0.1527778 | Singlet | 35689.046 | FALSE | 0.8127224 | TRUE | 1.1105181 | TRUE | 0.1390662 | pbmc3k-2 |
| pbmc3k_AAACATTGATCAGC-1 | pbmc3k | AAACATTGATCAGC-1 | AAACATTGATCAGC | 1 | v1.1.0 | NA | GemCode | Chromium_v1 | NextSeq500 | HealthyDonor2 | 2016-05-26 | pbmc3k | 3149 | 1131 | 41.31470 | 53.79486 | 65.44935 | 79.96189 | 28 | 8 | 0.8891712 | 3149 | 0.0935252 | FALSE | 64.87292 | 1.818707 | 0.3055556 | Doublet | 27278.726 | FALSE | 0.3049247 | FALSE | 0.7302303 | FALSE | 0.0619294 | pbmc3k-1 |
| pbmc3k_AAACCGTGCTTCCG-1 | pbmc3k | AAACCGTGCTTCCG-1 | AAACCGTGCTTCCG | 1 | v1.1.0 | NA | GemCode | Chromium_v1 | NextSeq500 | HealthyDonor2 | 2016-05-26 | pbmc3k | 2639 | 960 | 39.02994 | 52.89883 | 66.69193 | 82.56915 | 45 | 9 | 1.7051914 | 2639 | 0.0699088 | FALSE | 42.41399 | 1.637630 | 0.0277778 | Singlet | 19144.162 | FALSE | 0.0783875 | FALSE | 0.6468175 | FALSE | 0.1187522 | pbmc3k-3 |
| pbmc3k_AAACCGTGTATGCG-1 | pbmc3k | AAACCGTGTATGCG-1 | AAACCGTGTATGCG | 1 | v1.1.0 | NA | GemCode | Chromium_v1 | NextSeq500 | HealthyDonor2 | 2016-05-26 | pbmc3k | 981 | 522 | 44.85219 | 55.65749 | 67.17635 | 97.75739 | 12 | 5 | 1.2232416 | 981 | 0.0339540 | FALSE | 0.00000 | 0.000000 | 0.0000000 | Singlet | 8666.468 | FALSE | 0.0066647 | FALSE | 0.0951411 | FALSE | 0.0660668 | pbmc3k-4 |
A summary of all outputs is shown below:
| QC output | Description | Methods | Package/Tool |
|---|---|---|---|
| sum | Total counts | runPerCellQC | scater |
| detected | Total features | runPerCellQC | scater |
| percent_top | % Expression coming from top features | runPerCellQC | scater |
| subsets_ | sum, detected, percent_top calculated on specified gene list | runPerCellQC | scater |
| scrublet_score | Doublet score | runScrublet | scrublet |
| scrublet_call | Doublet classification based on threshold | runScrublet | scrublet |
| scran_doubletCells_score | Doublet score | runDoubletCells | scran |
| doubletFinder_doublet_score | Doublet score | runDoubletFinder | DoubletFinder |
| doubletFinder_doublet_label_resolution | Doublet classification based on threshold | runDoubletFinder | DoubletFinder |
| scds_cxds_score | Doublet score | runCxds | SCDS |
| scds_cxds_call | Doublet classification based on threshold | runCxds | SCDS |
| scds_bcds_score | Doublet score | runBcds | SCDS |
| scds_bcds_call | Doublet classification based on threshold | runBcds | SCDS |
| scds_hybrid_score | Doublet score | runCxdsBcdsHybrid | SCDS |
| scds_hybrid_call | Doublet classification based on threshold | runCxdsBcdsHybrid | SCDS |
| decontX_contamination | Ambient RNA contamination | runDecontX | celda |
| decontX_clusters | Clusters determined in dataset based on underlying algorithm | runDecontX | celda |
Upon running runCellQC, the QC outputs will need to be plotted. For each QC method, singleCellTK contains specialized plotting functions that may be used for the generation of QC plots.
SingleCellTK utilizes the scater package to compute cell-level QC metrics.
The wrapper function plotRunPerCellQCResults can be used to plot the general QC outputs.
runpercellqc.results <- plotRunPerCellQCResults(inSCE = pbmc, sample = colData(pbmc)$sample, combinePlot = "all")
plotRunPerCellQCResults(inSCE = pbmc)
runpercellqc.results
Doublets hinder cell-type identification by appearing as a distinct transcriptomic state, and need to be removed for downstream analysis. singleCellTK contains various doublet detection tools that the user may choose from.
Scrublet aims to detect doublets by creating simulated doublets from combining transcriptomic profiles of existing cells in the dataset.
The wrapper function plotScrubletResults can be used to plot the results from the Scrublet algorithm.
The names of the reducedDims of the SingleCellExperiment object are stored in the reducedDims slot. Here, we will use the UMAP coordinates generated from getUMAP above.
reducedDims(pbmc)
## List of length 6
## names(6): UMAP scrublet_TSNE ... decontX_pbmc3k_UMAP decontX_pbmc6k_UMAP
scrublet.results <- plotScrubletResults(
inSCE = pbmc,
reducedDimName = "UMAP",
sample = colData(pbmc)$sample,
combinePlot = "all", plotLabels = "default"
)
scrublet.results
DoubletCells is a doublet detection algorithm in the scran package. DoubletCells aims to detect doublets by creating a simulated doublet from existing cells and projecting it to the same PCA space as the cells.
The wrapper function plotDoubletCellsResults can be used to plot the QC outputs from the DoubletCells algorithm.
doubletcells.results <- plotDoubletCellsResults(
inSCE = pbmc, sample = colData(pbmc)$sample,
reducedDimName = "UMAP", combinePlot = "all", plotLabels = "default"
)
doubletcells.results
DoubletFinder is a doublet detection algorithm which depends on the single cell analysis package Seurat.
The wrapper function plotDoubletFinderResults can be used to plot the QC outputs from the DoubletFinder algorithm.
doubletFinderResults <- plotDoubletFinderResults(
inSCE = pbmc,
sample = colData(pbmc)$sample,
reducedDimName = "UMAP",
combinePlot = "all", plotLabels = "default"
)
doubletFinderResults
CXDS, or co-expression based doublet scoring, is an algorithm in the SCDS package which employs a binomial model for the co-expression of pairs of genes to determine doublets.
The wrapper function plotCxdsResults can be used to plot the QC outputs from the CXDS algorithm.
cxdsResults <- plotCxdsResults(
inSCE = pbmc,
sample = colData(pbmc)$sample,
reducedDimName = "UMAP",
combinePlot = "all",
plotLabels = "default"
)
cxdsResults
BCDS, or binary classification based doublet scoring, is an algorithm in the SCDS package which uses a binary classification approach to determine doublets.
The wrapper function plotBCDSResults can be used to plot the QC outputs from the BCDS algorithm.
bcdsResults <- plotBcdsResults(
inSCE = pbmc,
sample = colData(pbmc)$sample,
reducedDimName = "UMAP", combinePlot = "all", plotLabels = "default"
)
bcdsResults
The CXDS-BCDS hybrid algorithm, uses both CXDS and BCDS algorithms from the SCDS package.
The wrapper function plotScdsHybridResults can be used to plot the QC outputs from the CXDS-BCDS hybrid algorithm.
bcdsCxdsHybridResults <- plotScdsHybridResults(
inSCE = pbmc, sample = colData(pbmc)$sample,
reducedDimName = "UMAP", combinePlot = "all", plotLabels = "default"
)
pdf("~/xxxxx.pdf")
bcdsCxdsHybridResults
dev.off()
## png
## 2
In droplet-based single cell technologies, ambient RNA that may have been released from apoptotic or damaged cells may get incorporated into another droplet, and can lead to contamination. decontX, available from the celda, is a Bayesian method for the identification of the contamination level at a cellular level.
The wrapper function plotDecontXResults can be used to plot the QC outputs from the DecontX algorithm.
decontxResults <- plotDecontXResults(
inSCE = pbmc, sample = colData(pbmc)$sample,
reducedDimName = "UMAP", combinePlot = "all", plotLabels = "default"
)
decontxResults
SingleCellExperiment objects can be subset by its colData using subsetSCECols. The colData parameter takes in an expression in character vector form which will be used to identify a subset of columns using variables found in the colData of the SingleCellExperiment object. For example, if x is a numeric vector in colData, then “x < 5” will return all columns with x less than 5. The index parameter takes in a vector of indices which should be kept, while bool takes in a vector of TRUE or FALSE which should be the same length as the number of columns in the SingleCellExperiment object.
#Before filtering:
dim(pbmc)
## [1] 32738 8119
Remove barcodes with high mitochondrial gene expression:
pbmc <- subsetSCECols(pbmc, colData = 'subsets_mito_percent < 20')
Remove detected doublets from Scrublet:
pbmc <- subsetSCECols(pbmc, colData = 'scrublet_call == FALSE')
Remove cells with high levels of ambient RNA contamination:
pbmc <- subsetSCECols(pbmc, colData = 'decontX_contamination < 0.5')
#After filtering:
dim(pbmc)
## [1] 32738 7932
Instead of running all quality control methods on the dataset at once, users may elect to execute QC methods individually. The parameters as well as the outputs to individual QC functions are described in detail as follows:
The wrapper function runPerCellQC can be used to separately compute QC metrics on its own.
In this function, the inSCE parameter is the input SingleCellExperiment object, while the useAssay parameter is the assay object that in the SingleCellExperiment object the user wishes to use.
If the user wishes, a list of gene sets can be applied to the function to determine the expression of a set of specific genes. A gene list imported into the SingleCellExperiment object using importGeneSets functions can be set as collectionName. Additionally, a pre-made list of genes can be used to determine the level of gene expression per cell. A list containing gene symbols may be set as geneSetList, or the user may instead use the geneSetCollection parameter to supply a GeneSetCollection object from the GSEABase package.
The QC outputs are sum, detected, and percent_top_X.
sum contains the total number of counts for each cell.
detected contains the total number of features for each cell.
percent_top_X contains the percentage of the total counts that is made up by the expression of the top X genes for each cell.
The subsets_ columns contain information for the specific gene list that was used. For instance, if a gene list containing mitochondrial genes named mito was used, subsets_mito_sum would contains the total number of mitochondrial counts for each cell.
pbmc <- runPerCellQC(
inSCE = pbmc,
useAssay = "counts",
collectionName = "mito")
The wrapper function runScrublet can be used to separately run the Scrublet algorithm on its own.
The sample parameter indicates what sample each cell originated from. It can be set to NULL if all cells in the dataset came from the same sample.
Scrublet also has a large set of parameters that the user can adjust; please refer to the Scrublet website for more details.
The Scrublet outputs are scrublet_score, which is a numeric variable of the likelihood that a cell is a doublet, and the scrublet_label, which is the assignment of whether the cell is a doublet.
pbmc <- runScrublet(
inSCE = pbmc,
sample = colData(pbmc)$sample,
useAssay = "counts"
)
The wrapper function runBarcodeRankDrops can be used to separately run the DoubletCells algorithm on its own. The nNeighbors parameter is the number of nearest neighbor used to calculate the density for doublet detection. simDoublets is used to determine the number of simulated doublets used for doublet detection.
The output of DoubletCells is a scran_doubletCells_Score. The doublet score of a droplet will be higher if the it is deemed likely to be a doublet.
pbmc <- runDoubletCells(inSCE = pbmc, sample = colData(pbmc)$sample, useAssay = "counts")
The wrapper function runDoubletFinder can be used to separately run the DoubletFinder algorithm on its own. runDoubletFinder relies on a parameter (in Seurat) called resolution to determine cells that may be doublets. Users will be able to manipulate the resolution parameter through seuratRes. If multiple numeric vectors are stored in seuratRes, there will be multiple label/scores. The seuratNfeatures parameter determines the number of features that is used in the FindVariableFeatures function in Seurat. seuratPcs parameter determines the number of dimensions used in the FindNeighbors function in Seurat. The formationRate parameter is the estimated doublet detection rate in the dataset. aims to detect doublets by creating simulated doublets from combining transcriptomic profiles of existing cells in the dataset.
The DoubletFinder outputs are doubletFinder_doublet_score, which is a numeric variable of the likelihood that a cell is a doublet, and the doubletFinder_doublet_label, which is the assignment of whether the cell is a doublet.
pbmc <- runDoubletFinder(
inSCE = pbmc, useAssay = "counts",
sample = colData(pbmc)$sample,
seuratRes = c(1.0), seuratPcs = 1:15,
seuratNfeatures = 2000,
formationRate = 0.075, seed = 12345
)
The wrapper function runCxds can be used to separately run the CXDS algorithm on its own. In runCxds, the ntop parameter is the number of top variance genes to consider. The binThresh parameter is the minimum counts a gene needs to have to be included in the analysis. verb determines whether progress messages will be displayed or not. retRes will determine whether the gene pair results should be returned or not. The user may set the estimated number of doublets with estNdbl.
The output of runCxds is the doublet score, scds_cxds_score.
pbmc <- runCxds(
inSCE = pbmc, sample = colData(pbmc)$sample,
ntop = 500, binThresh = 0,
verb = FALSE, retRes = FALSE, estNdbl = FALSE
)
The wrapper function runBcds can be used to separately run the BCDS algorithm on its own. In runBcds, the ntop parameter is the number of top variance genes to consider. The srat parameter is the ratio between original number of cells and simulated doublets. The nmax parameter is the maximum number of cycles that the algorithm should run through. If set to tune, this will be automatic. The varImp parameter determines if the variable importance should be returned or not.
The output of runBcds is scds_bcds_score, which is the likelihood that a cell is a doublet.
pbmc <- runBcds(
inSCE = pbmc, seed = 12345, sample = colData(pbmc)$sample,
ntop = 500, srat = 1, nmax = "tune", varImp = FALSE
)
The wrapper function runCxdsBcdsHybrid can be used to separately run the CXDS-BCDS hybrid algorithm on its own.
All parameters from the runBCDS and runBCDS functions may be applied to this function in the cxdsArgs and bcdsArgs parameters, respectively. The output of runCxdsBcdsHybrid is the doublet score, scds_hybrid_score.
pbmc <- runCxdsBcdsHybrid(
inSCE = pbmc, sample = colData(pbmc)$sample,
seed = 12345, nTop = 500
)
The outputs of runDecontX are decontX_contamination and decontX_clusters.
The wrapper function runDecontX can be used to separately run the DecontX algorithm on its own. decontX_contamination is a numeric vector which characterizes the level of contamination in each cell. Clustering is performed as part of the runDecontX algorithm. decontX_clusters is the resulting cluster assignment, which can also be labeled on the plot.
pbmc <- runDecontX(pbmc, sample = colData(pbmc)$sample, useAssay = "counts")
sessionInfo()
## R version 4.0.2 (2020-06-22)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: CentOS Linux 7 (Core)
##
## Matrix products: default
## BLAS: /share/pkg.7/r/4.0.2/install/lib/libopenblasp-r0.3.7.so
## LAPACK: /share/pkg.7/r/4.0.2/install/lib/liblapack.so.3.9.0
##
## locale:
## [1] C
##
## attached base packages:
## [1] grid stats4 parallel stats graphics grDevices utils
## [8] datasets methods base
##
## other attached packages:
## [1] fields_10.3 maps_3.3.0
## [3] spam_2.5-1 dotCall64_1.0-0
## [5] Seurat_3.2.0 ROCR_1.0-11
## [7] KernSmooth_2.23-16 TENxPBMCData_1.6.0
## [9] HDF5Array_1.16.1 rhdf5_2.32.1
## [11] singleCellTK_1.7.6 SingleCellExperiment_1.10.1
## [13] SummarizedExperiment_1.18.1 DelayedArray_0.14.0
## [15] matrixStats_0.56.0 Biobase_2.48.0
## [17] GenomicRanges_1.40.0 GenomeInfoDb_1.24.2
## [19] IRanges_2.22.2 S4Vectors_0.26.1
## [21] BiocGenerics_0.34.0 magrittr_1.5
## [23] rmarkdown_2.3 devtools_2.3.1
## [25] usethis_1.6.1
##
## loaded via a namespace (and not attached):
## [1] rappdirs_0.3.1 MCMCprecision_0.4.0
## [3] scds_1.4.0 R.methodsS3_1.8.0
## [5] tidyr_1.1.1 ggplot2_3.3.2
## [7] bit64_0.9-7 knitr_1.29
## [9] irlba_2.3.3 R.utils_2.9.2
## [11] data.table_1.12.8 rpart_4.1-15
## [13] RCurl_1.98-1.2 doParallel_1.0.15
## [15] generics_0.0.2 callr_3.4.3
## [17] cowplot_1.0.0 RSQLite_2.2.0
## [19] RANN_2.6.1 combinat_0.0-8
## [21] future_1.17.0 bit_1.1-15.2
## [23] webshot_0.5.2 xml2_1.3.2
## [25] spatstat.data_1.4-3 httpuv_1.5.4
## [27] assertthat_0.2.1 viridis_0.5.1
## [29] xfun_0.16 evaluate_0.14
## [31] promises_1.1.1 fansi_0.4.1
## [33] dbplyr_1.4.4 igraph_1.2.5
## [35] DBI_1.1.0 htmlwidgets_1.5.1
## [37] purrr_0.3.4 ellipsis_0.3.1
## [39] RSpectra_0.16-0 dplyr_1.0.1
## [41] backports_1.1.8 annotate_1.66.0
## [43] deldir_0.1-28 vctrs_0.3.2
## [45] remotes_2.2.0 abind_1.4-5
## [47] RcppEigen_0.3.3.7.0 withr_2.2.0
## [49] GSVAdata_1.24.0 sctransform_0.2.1
## [51] prettyunits_1.1.1 scran_1.16.0
## [53] goftest_1.2-2 cluster_2.1.0
## [55] ExperimentHub_1.14.0 ape_5.4
## [57] lazyeval_0.2.2 crayon_1.3.4
## [59] labeling_0.3 edgeR_3.30.3
## [61] pkgconfig_2.0.3 nlme_3.1-148
## [63] vipor_0.4.5 pkgload_1.1.0
## [65] rlang_0.4.7 globals_0.12.5
## [67] lifecycle_0.2.0 miniUI_0.1.1.1
## [69] dbscan_1.1-5 BiocFileCache_1.12.0
## [71] enrichR_2.1 rsvd_1.0.3
## [73] AnnotationHub_2.20.0 rprojroot_1.3-2
## [75] polyclip_1.10-0 lmtest_0.9-37
## [77] graph_1.66.0 Matrix_1.2-18
## [79] Rhdf5lib_1.10.0 zoo_1.8-8
## [81] beeswarm_0.2.3 ggridges_0.5.2
## [83] processx_3.4.3 png_0.1-7
## [85] viridisLite_0.3.0 rjson_0.2.20
## [87] bitops_1.0-6 R.oo_1.23.0
## [89] pROC_1.16.2 blob_1.2.1
## [91] DelayedMatrixStats_1.10.0 stringr_1.4.0
## [93] scales_1.1.1 memoise_1.1.0
## [95] GSEABase_1.50.1 plyr_1.8.6
## [97] ica_1.0-2 zlibbioc_1.34.0
## [99] compiler_4.0.2 dqrng_0.2.1
## [101] kableExtra_1.2.1 RColorBrewer_1.1-2
## [103] fitdistrplus_1.1-1 cli_2.0.2
## [105] XVector_0.28.0 listenv_0.8.0
## [107] patchwork_1.0.1 pbapply_1.4-2
## [109] ps_1.3.4 MASS_7.3-51.6
## [111] mgcv_1.8-31 tidyselect_1.1.0
## [113] MAST_1.14.0 stringi_1.4.6
## [115] highr_0.8 yaml_2.2.1
## [117] BiocSingular_1.4.0 locfit_1.5-9.4
## [119] ggrepel_0.8.2 tools_4.0.2
## [121] future.apply_1.5.0 rstudioapi_0.11
## [123] foreach_1.5.0 celda_1.4.6
## [125] gridExtra_2.3 farver_2.0.3
## [127] Rtsne_0.15 DropletUtils_1.8.0
## [129] digest_0.6.25 BiocManager_1.30.10
## [131] FNN_1.1.3 shiny_1.5.0
## [133] Rcpp_1.0.5 BiocVersion_3.11.1
## [135] later_1.1.0.1 RcppAnnoy_0.0.16
## [137] httr_1.4.2 AnnotationDbi_1.50.3
## [139] colorspace_1.4-1 rvest_0.3.6
## [141] XML_3.99-0.3 fs_1.5.0
## [143] tensor_1.5 reticulate_1.16
## [145] splines_4.0.2 uwot_0.1.8
## [147] statmod_1.4.34 spatstat.utils_1.17-0
## [149] scater_1.16.1 xgboost_1.1.1.1
## [151] plotly_4.9.2.1 sessioninfo_1.1.1
## [153] xtable_1.8-4 jsonlite_1.7.0
## [155] spatstat_1.64-1 testthat_2.3.2
## [157] R6_2.4.1 pillar_1.4.6
## [159] htmltools_0.5.0 mime_0.9
## [161] glue_1.4.1 fastmap_1.0.1
## [163] BiocParallel_1.22.0 BiocNeighbors_1.6.0
## [165] interactiveDisplayBase_1.26.3 codetools_0.2-16
## [167] pkgbuild_1.1.0 lattice_0.20-41
## [169] tibble_3.0.3 curl_4.3
## [171] ggbeeswarm_0.6.0 leiden_0.3.3
## [173] DoubletFinder_2.0.2 survival_3.1-12
## [175] limma_3.44.3 desc_1.2.0
## [177] munsell_0.5.0 GenomeInfoDbData_1.2.3
## [179] iterators_1.0.12 reshape2_1.4.4
## [181] gtable_0.3.0